home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_bas / nkbvc11.zip / KNOB.CPP < prev    next >
C/C++ Source or Header  |  1996-04-11  |  4KB  |  205 lines

  1. // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
  2.  
  3. // NOTE: Do not modify the contents of this file.  If this class is regenerated by
  4. //  Microsoft Visual C++, your modifications will be overwritten.
  5.  
  6.  
  7. #include "stdafx.h"
  8. #include "knob.h"
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CKnob
  12.  
  13. IMPLEMENT_DYNCREATE(CKnob, CWnd)
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CKnob properties
  17.  
  18. unsigned long CKnob::GetNeedleColor()
  19. {
  20.     unsigned long result;
  21.     GetProperty(0x1, VT_I4, (void*)&result);
  22.     return result;
  23. }
  24.  
  25. void CKnob::SetNeedleColor(unsigned long propVal)
  26. {
  27.     SetProperty(0x1, VT_I4, propVal);
  28. }
  29.  
  30. unsigned long CKnob::GetBorderColor()
  31. {
  32.     unsigned long result;
  33.     GetProperty(0x2, VT_I4, (void*)&result);
  34.     return result;
  35. }
  36.  
  37. void CKnob::SetBorderColor(unsigned long propVal)
  38. {
  39.     SetProperty(0x2, VT_I4, propVal);
  40. }
  41.  
  42. short CKnob::GetMin()
  43. {
  44.     short result;
  45.     GetProperty(0x3, VT_I2, (void*)&result);
  46.     return result;
  47. }
  48.  
  49. void CKnob::SetMin(short propVal)
  50. {
  51.     SetProperty(0x3, VT_I2, propVal);
  52. }
  53.  
  54. short CKnob::GetMax()
  55. {
  56.     short result;
  57.     GetProperty(0x4, VT_I2, (void*)&result);
  58.     return result;
  59. }
  60.  
  61. void CKnob::SetMax(short propVal)
  62. {
  63.     SetProperty(0x4, VT_I2, propVal);
  64. }
  65.  
  66. short CKnob::GetPos()
  67. {
  68.     short result;
  69.     GetProperty(0x5, VT_I2, (void*)&result);
  70.     return result;
  71. }
  72.  
  73. void CKnob::SetPos(short propVal)
  74. {
  75.     SetProperty(0x5, VT_I2, propVal);
  76. }
  77.  
  78. long CKnob::GetOuterBevel()
  79. {
  80.     long result;
  81.     GetProperty(0x6, VT_I4, (void*)&result);
  82.     return result;
  83. }
  84.  
  85. void CKnob::SetOuterBevel(long propVal)
  86. {
  87.     SetProperty(0x6, VT_I4, propVal);
  88. }
  89.  
  90. long CKnob::GetInnerBevel()
  91. {
  92.     long result;
  93.     GetProperty(0x7, VT_I4, (void*)&result);
  94.     return result;
  95. }
  96.  
  97. void CKnob::SetInnerBevel(long propVal)
  98. {
  99.     SetProperty(0x7, VT_I4, propVal);
  100. }
  101.  
  102. short CKnob::GetOuterBevelWidth()
  103. {
  104.     short result;
  105.     GetProperty(0x8, VT_I2, (void*)&result);
  106.     return result;
  107. }
  108.  
  109. void CKnob::SetOuterBevelWidth(short propVal)
  110. {
  111.     SetProperty(0x8, VT_I2, propVal);
  112. }
  113.  
  114. short CKnob::GetInnerBevelWidth()
  115. {
  116.     short result;
  117.     GetProperty(0x9, VT_I2, (void*)&result);
  118.     return result;
  119. }
  120.  
  121. void CKnob::SetInnerBevelWidth(short propVal)
  122. {
  123.     SetProperty(0x9, VT_I2, propVal);
  124. }
  125.  
  126. short CKnob::GetBorderWidth()
  127. {
  128.     short result;
  129.     GetProperty(0xa, VT_I2, (void*)&result);
  130.     return result;
  131. }
  132.  
  133. void CKnob::SetBorderWidth(short propVal)
  134. {
  135.     SetProperty(0xa, VT_I2, propVal);
  136. }
  137.  
  138. unsigned long CKnob::GetShadowColor()
  139. {
  140.     unsigned long result;
  141.     GetProperty(0xb, VT_I4, (void*)&result);
  142.     return result;
  143. }
  144.  
  145. void CKnob::SetShadowColor(unsigned long propVal)
  146. {
  147.     SetProperty(0xb, VT_I4, propVal);
  148. }
  149.  
  150. unsigned long CKnob::GetHiliteColor()
  151. {
  152.     unsigned long result;
  153.     GetProperty(0xc, VT_I4, (void*)&result);
  154.     return result;
  155. }
  156.  
  157. void CKnob::SetHiliteColor(unsigned long propVal)
  158. {
  159.     SetProperty(0xc, VT_I4, propVal);
  160. }
  161.  
  162. long CKnob::GetOrientation()
  163. {
  164.     long result;
  165.     GetProperty(0xd, VT_I4, (void*)&result);
  166.     return result;
  167. }
  168.  
  169. void CKnob::SetOrientation(long propVal)
  170. {
  171.     SetProperty(0xd, VT_I4, propVal);
  172. }
  173.  
  174. unsigned long CKnob::GetFaceColor()
  175. {
  176.     unsigned long result;
  177.     GetProperty(0xe, VT_I4, (void*)&result);
  178.     return result;
  179. }
  180.  
  181. void CKnob::SetFaceColor(unsigned long propVal)
  182. {
  183.     SetProperty(0xe, VT_I4, propVal);
  184. }
  185.  
  186. OLE_COLOR CKnob::GetBackColor()
  187. {
  188.     OLE_COLOR result;
  189.     GetProperty(DISPID_BACKCOLOR, VT_I4, (void*)&result);
  190.     return result;
  191. }
  192.  
  193. void CKnob::SetBackColor(OLE_COLOR propVal)
  194. {
  195.     SetProperty(DISPID_BACKCOLOR, VT_I4, propVal);
  196. }
  197.  
  198. /////////////////////////////////////////////////////////////////////////////
  199. // CKnob operations
  200.  
  201. void CKnob::AboutBox()
  202. {
  203.     InvokeHelper(0xfffffdd8, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
  204. }
  205.